home *** CD-ROM | disk | FTP | other *** search
/ Hyper Stacks 1994 May / Hyper Stacks (Pacific HiTech)(1994)[Mac].iso / MacTools / HyperCard BBS / Sysop Help / background_8603.txt < prev    next >
Text File  |  1988-08-11  |  3KB  |  127 lines

  1. -- background: 8603 from stack: in
  2. -- bmap block id: 9312
  3. -- flags: 0000
  4. -- background id: 0
  5. -- name: 
  6.  
  7.  
  8. -- part 1 (field)
  9. -- low flags: 00
  10. -- high flags: 2004
  11. -- rect: left=5 top=5 right=315 bottom=251
  12. -- title width / last selected line: 0
  13. -- icon id / first selected line: 0 / 0
  14. -- text alignment: 0
  15. -- font id: 3
  16. -- text size: 9
  17. -- style flags: 0
  18. -- line height: 12
  19. -- part name: 
  20.  
  21.  
  22. -- part 2 (field)
  23. -- low flags: 00
  24. -- high flags: 2004
  25. -- rect: left=260 top=5 right=315 bottom=507
  26. -- title width / last selected line: 0
  27. -- icon id / first selected line: 0 / 0
  28. -- text alignment: 0
  29. -- font id: 3
  30. -- text size: 9
  31. -- style flags: 0
  32. -- line height: 12
  33. -- part name: 
  34.  
  35.  
  36. -- part 3 (button)
  37. -- low flags: 00
  38. -- high flags: 0000
  39. -- rect: left=221 top=321 right=342 bottom=252
  40. -- title width / last selected line: 0
  41. -- icon id / first selected line: 1014 / 1014
  42. -- text alignment: 1
  43. -- font id: 0
  44. -- text size: 12
  45. -- style flags: 0
  46. -- line height: 16
  47. -- part name: prev
  48. ----- HyperTalk script -----
  49. on mouseUp
  50.   visual effect wipe right
  51.   go to previous card
  52. end mouseUp
  53.  
  54.  
  55.  
  56. -- part 4 (button)
  57. -- low flags: 00
  58. -- high flags: 0000
  59. -- rect: left=259 top=321 right=342 bottom=290
  60. -- title width / last selected line: 0
  61. -- icon id / first selected line: 1013 / 1013
  62. -- text alignment: 1
  63. -- font id: 0
  64. -- text size: 12
  65. -- style flags: 0
  66. -- line height: 16
  67. -- part name: next
  68. ----- HyperTalk script -----
  69. on mouseUp
  70.   visual effect wipe left
  71.   go to next card
  72. end mouseUp
  73.  
  74.  
  75.  
  76. -- part 5 (button)
  77. -- low flags: 00
  78. -- high flags: A003
  79. -- rect: left=329 top=320 right=342 bottom=469
  80. -- title width / last selected line: 0
  81. -- icon id / first selected line: 0 / 0
  82. -- text alignment: 1
  83. -- font id: 0
  84. -- text size: 12
  85. -- style flags: 0
  86. -- line height: 16
  87. -- part name: Back to first card
  88. ----- HyperTalk script -----
  89. on mouseUp
  90.   go to card "Section 531"
  91. end mouseUp
  92.  
  93.  
  94.  
  95. -- part 6 (button)
  96. -- low flags: 00
  97. -- high flags: A003
  98. -- rect: left=44 top=320 right=342 bottom=184
  99. -- title width / last selected line: 0
  100. -- icon id / first selected line: 0 / 0
  101. -- text alignment: 1
  102. -- font id: 0
  103. -- text size: 12
  104. -- style flags: 0
  105. -- line height: 16
  106. -- part name: Print this appendix
  107. ----- HyperTalk script -----
  108. on mouseUp
  109.   open printing with dialog
  110.   push card
  111.   go to card "Section 532"
  112.   hide background button "print this appendix"
  113.   hide background button "back to first card"
  114.   hide background button "prev"
  115.   hide background button "next"
  116.   print card
  117.   go to next card
  118.   print card
  119.   close printing
  120.   show background button "print this appendix"
  121.   show background button "back to first card"
  122.   show background button "prev"
  123.   show background button "next"
  124.   pop card
  125. end mouseUp
  126.  
  127.